home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(load){
- function rem()
- {
- _root.boom(_X,_Y,colour);
- this._visible = false;
- this.active = false;
- _root.hearts_beat = _root.hearts_beat + 1;
- _root.level_score += 10;
- i = 0;
- while(i < _root.stage_objects.length)
- {
- if(_root.stage_objects[i] == this._name)
- {
- _root.todel_objects.push[i];
- }
- i++;
- }
- }
- move_x = _X;
- move_y = _Y;
- move_direction = 1;
- c_path = move_path;
- tp = "heart";
- active = true;
- colour = _root.colors_array[random(_root.colors_array.length)];
- gotoAndStop(colour);
- _root.stage_objects.push(this._name);
- _root.level_objects.push(this._name);
- }
-